.offer-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.przycisk-pusty {
  background-color: transparent;
  color: #000;
  border: 2px solid #ec5454;
}

.przycisk-pusty:hover {
  background-color: #ffbebe;
  color: #fff;
}

.przycisk {
  border: 2px solid #ec5454;
}

#pills-contact-tab, #pills-profile-tab, #pills-home-tab {
  background-color: #ddd;
  margin-right: 10px;
}

#pills-contact-tab.active, #pills-profile-tab.active, #pills-home-tab.active {
  background-color: #f5434e;
  border-radius: 5px;
}


#pills-contact-tab:hover, #pills-profile-tab:hover, #pills-home-tab:hover {
  background-color: #ffbebe;
  color: #000;
}

#pills-contact-tab.active:hover, #pills-profile-tab.active:hover, #pills-home-tab.active:hover {
  background-color: #f5434e;
  color: #fff;
}

.call-button {
  background-color: #f5434e;
  color: #fff;
  position: fixed;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  bottom: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  z-index: 99999 !important;
}

.call-button__image {
  width: 90%;
}

.contact-link {
  color: #f5434e;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
  color: #f5434e;
}